home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / QEVARBL.H < prev    next >
Text File  |  1993-06-10  |  686b  |  36 lines

  1. /**************************************************
  2. * FILE NAME: QEvarbl.h  TITLE: QELib variables
  3. *
  4. * AUTHOR: Ken North     Resource Group, Inc.    
  5. *                       2604B El Camino Real, #351
  6. * copyright(c)1992      Carlsbad, CA 92008
  7. **************************************************
  8. * SYNOPSIS: 
  9. *     Variables for use with Q+E Lib
  10. ***************************************************/
  11.  
  12. #ifndef __QEVARBL_H
  13. #define __QEVARBL_H
  14.  
  15. #ifndef __QEDEFS_H
  16.     #include "QEdefs.h"
  17. #endif
  18.  
  19. #ifndef __QCOLUMN_H
  20.     #include "qcolumn.h"
  21. #endif
  22.  
  23. int      StatementLen;
  24. int      BufferLen;
  25. int      RowLength;
  26.  
  27. char      statement [500];
  28.  
  29. char      records[XRECSIZE];
  30.  
  31. #endif
  32.  
  33.  
  34.  
  35.  
  36.